home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / vol7n1.arc / CAPTURE.DOC < prev    next >
Text File  |  1987-12-08  |  2KB  |  53 lines

  1.  
  2.  
  3.         CAPTURE your own
  4.           HELP screens
  5.  
  6. CAPTURE instantly turns the custom help menus, tables, or anything you type on
  7. your screen into files you can pop up with the HELP.COM program in this 
  8. issue's PC Lab Notes.
  9.  
  10. «MDUL»«MDNM»CAPTURE
  11. Command
  12. Tom Kihlken    1988/No. 1 (Utilities)
  13.  
  14. Purpose:    Saves the text and attribute bytes on the screen to a 
  15. 4,000-byte file that the HELP.COM program (PC Lab Notes, 1988/No. 1) can pop
  16. up either from within an application or at the DOS prompt.
  17.  
  18. Format:    CAPTURE
  19.  
  20. Remarks:    CAPTURE is a memory-resident screen-saving program.  Its 
  21. default actuating key is Alt-C, though this can be changed, as described 
  22. below.  The program takes no parameters and saves to filenames SCREEN.000,
  23.  SCREEN.001, etc.  It will not overwrite existing filenames, but increments
  24.  the number in the extension instead.  Filenames stored by CAPTURE can then be
  25.  renamed for use by HELP.COM.  CAPTURE files may also be combined into
  26.  multiple-page help screens (up to the 14-screen limit of HELP.COM), by using
  27.  the DOS COPY /B option for copying binary files.  
  28.  
  29.     For example,
  30.  
  31.     COPY /B SCREEN.000+SCREEN.001+SCREEN.002 HELP.HEP
  32.  
  33.     would combine the first three CAPTUREd help screens into the file,
  34.  HELP.HEP, which might be one of the files in a \HELP subdirectory.
  35.  
  36.     The Alt-C trigger key may be changed with DEBUG, by entering the 
  37. following commands:
  38.  
  39.     
  40.     DEBUG CAPTURE.COM
  41.     E 268 SS    ;Your Scan code
  42.     E 27D MM    ;Your Shift mask
  43.     W
  44.     Q
  45.  
  46.     Tables containing the entry to make for SS (the scan code) and for MM
  47.  (the shift mask) above are contained in the body of the article.
  48.  
  49.  
  50.  
  51.  
  52.  
  53.